home *** CD-ROM | disk | FTP | other *** search
/ Sigcat 1994: Conference Disk / SIGCAT 94 Conference Disk - DataDisc.ISO / interdos / disk2.exe / UNPACK.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-11-13  |  491 b   |  18 lines

  1. echo off
  2. REM arg1 = installation root drive:directory
  3. REM arg2 = target drive and directory
  4. REM arg3 = zip file name to unpack
  5.  
  6. cls
  7. echo Preparing to unpack archive file %3 into directory %2 ...
  8. REM get to the target drive and directory
  9. chdrive %2
  10. echo Unpacking the file...
  11. REM unpack the zip file
  12. %1\pkunzip %1\%3
  13. echo Done unpacking the archive.
  14. REM get back to the installation root drive and directory
  15. %1\chdrive %1
  16. REM give us a chance to see what just happened
  17. pause
  18.